/* about.css - Bespoke Architecture */

.unique-about {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
}

.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(13, 13, 36, 0.6), rgba(13, 13, 36, 0.9)), url('../../Image/building1\\ (3).jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid orange;
}

.about-hero-content {
    text-align: center;
}

.about-hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.5rem;
    color: orange;
    font-weight: 300;
}

.stats-ribbon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: rgb(10, 10, 25);
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,165,0,0.3);
    min-width: 200px;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: orange;
}

.stat-box h2 {
    font-size: 3rem;
    color: orange;
    margin: 0 0 10px 0;
}

.stat-box p {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-timeline-container {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    border-left: 4px solid rgba(255, 165, 0, 0.4);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-node {
    position: relative;
}

.node-marker {
    position: absolute;
    left: -48px; /* Alignment strictly tailored over the border */
    top: 5px;
    width: 20px;
    height: 20px;
    background: orange;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,165,0,0.8);
}

.node-content {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid orange;
}

.node-content h3 {
    color: orange;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.node-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}
